home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Adobe AIR 1.5.1 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / controls / ProgressBarMode.as < prev    next >
Encoding:
Text File  |  2009-02-12  |  480 b   |  24 lines

  1. package mx.controls
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class ProgressBarMode
  8.    {
  9.       mx_internal static const VERSION:String = "3.0.0.0";
  10.       
  11.       public static const EVENT:String = "event";
  12.       
  13.       public static const MANUAL:String = "manual";
  14.       
  15.       public static const POLLED:String = "polled";
  16.       
  17.       public function ProgressBarMode()
  18.       {
  19.          super();
  20.       }
  21.    }
  22. }
  23.  
  24.